home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Development
/
PowerD
/
powerd
/
source
/
lib
/
powerd_lib.lha
/
PowerD_PPC
/
IsHex.ass
< prev
next >
Wrap
Text File
|
2000-10-26
|
301b
|
27 lines
# IsHex(r3:LONG)(LONG)
.text
.global _IsHex
_IsHex:
cmpwi r3,"0"
blt .false
cmpwi r3,"9"
ble .true
cmpwi r3,"A"
blt .false
cmpwi r3,"F"
ble .true
cmpwi r3,"a"
blt .false
cmpwi r3,"f"
bgt .false
.true: li r3,-1
blr
.false: li r3,0
blr
.type _IsHex,@function
.size _IsHex,$-_IsHex